home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / programming / ixemul-complete / ixemul / string / memmove.c < prev    next >
C/C++ Source or Header  |  1995-12-22  |  152b  |  11 lines

  1. #include <stdlib.h>
  2. #include <string.h>
  3.  
  4. void *
  5. memmove (void *dst0, const void *src0, size_t length)
  6. {
  7.   bcopy (src0, dst0, length);
  8.   return dst0;
  9. }
  10.  
  11.